.insc-wrap {
  max-width: 960px;
  margin: 24px auto 40px;
  padding: 0 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

.insc-wrap *,
.insc-wrap *::before,
.insc-wrap *::after {
  box-sizing: inherit;
}

.insc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d7dce5;
}

.insc-header-copy {
  min-width: 0;
}

.insc-title {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1f2937;
}

.insc-sub {
  margin: 6px 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #6b7280;
  overflow-wrap: anywhere;
}

.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: 20px;
  min-height: 120px;
  background: #ffffff;
  border: 1px solid #d7dce5;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  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 {
  flex: 1 1 auto;
  min-width: 0;
  color: #1f2937;
}

.insc-name p {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.insc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  background: #006400;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.insc-btn:hover,
.insc-btn:focus {
  background: #003900;
  transform: translateY(-1px);
}

.insc-btn-secondary {
  min-width: min(100%, 240px);
}

.footer-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.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: 900px) {
  .insc-wrap {
    max-width: 760px;
  }

  .insc-list {
    gap: 16px;
  }

  .insc-card {
    padding: 18px;
  }
}

@media (max-width: 640px) {
  .insc-wrap {
    margin-top: 16px;
    padding: 0 14px 8px;
  }

  .insc-header {
    margin-bottom: 16px;
    padding-bottom: 16px;
  }

  .insc-list {
    grid-template-columns: 1fr;
  }

  .insc-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .insc-btn,
  .insc-btn-secondary {
    width: 100%;
    min-width: 0;
  }

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

@media (max-width: 420px) {
  .insc-wrap {
    padding-inline: 12px;
  }

  .insc-card {
    padding: 16px;
    border-radius: 14px;
  }

  .insc-title {
    font-size: 1.3rem;
  }

  .insc-sub {
    font-size: 0.9rem;
  }
}