.repo-section-tight { padding-top: 0; padding-bottom: 0; }

.repo-notice {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(3,70,148,0.05);
  border: 1px solid rgba(3,70,148,0.15);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  margin-bottom: 8px;
}

.repo-notice-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(3,70,148,0.1);
  color: var(--blue);
}

.repo-notice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark);
}

.repo-notice-text strong { color: var(--blue); }

.repo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}

.repo-col .rbv-sec-sub { margin-bottom: 24px; }

.repo-form-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.repo-form-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border: 1px solid var(--cream3);
  border-left: 4px solid var(--accent-color, var(--blue));
  border-radius: var(--r-lg);
  padding: 18px 20px;
  text-decoration: none;
  box-shadow: 0 3px 12px rgba(13,27,42,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.repo-form-card:hover {
  transform: translateX(4px);
  box-shadow: 0 10px 24px rgba(26,42,58,0.14);
}

.repo-form-card[data-accent="1"] { --accent-color: var(--blue); }
.repo-form-card[data-accent="2"] { --accent-color: #0c5aa8; }
.repo-form-card[data-accent="3"] { --accent-color: #023a7d; }
.repo-form-card[data-accent="4"] { --accent-color: var(--dark); }
.repo-form-card[data-accent="5"] { --accent-color: var(--accent3); }
.repo-form-card[data-accent="6"] { --accent-color: var(--mid); }

.repo-form-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: rgba(3,70,148,0.07);
  color: var(--accent-color, var(--blue));
}

.repo-form-body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.repo-form-title {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
}

.repo-form-desc {
  font-size: 12px;
  line-height: 1.55;
  color: var(--mid);
}

.repo-form-arrow {
  flex: 0 0 auto;
  color: var(--mid);
  transition: transform 0.2s ease, color 0.2s ease;
}

.repo-form-card:hover .repo-form-arrow { transform: translateX(3px); color: var(--accent-color, var(--blue)); }

.repo-steps {
  margin: 0 0 32px;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.repo-steps li {
  font-size: 14px;
  line-height: 1.75;
  color: var(--dark);
  padding-left: 4px;
}

.repo-steps a { color: var(--blue); font-weight: 600; }

.repo-step-highlight {
  display: inline-block;
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(3,70,148,0.08);
  padding: 4px 10px;
  border-radius: var(--r-md);
}

.repo-illustration {
  display: flex;
  justify-content: center;
  padding: 12px 0 0;
}

.repo-illustration svg { width: 100%; max-width: 260px; height: auto; }

@media (max-width: 900px) {
  .repo-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .repo-notice { flex-direction: column; text-align: center; padding: 20px; }
  .repo-form-card { padding: 14px 16px; gap: 12px; }
  .repo-form-title { font-size: 13.5px; }
}

