/* =========================================================
   service-rnd.css
   연구지원 프로그램
   ========================================================= */

.rnd-summary {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  color: #222;
  text-align: center;
  line-height: 1.5;
}

/* Support */
.rnd-support-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.rnd-support-card {
  background: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 250px;
}

.rnd-support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

/* 아이콘 */
.rnd-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.rnd-icon img {
  width: 90px;
  height: 90px;
}

/* 텍스트 */
.rnd-support-card h4 {
  font-size: 18px;
  font-weight: 700;
  padding-top: 12px;
}

.rnd-support-card p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Process */
.rnd-process {
  display: flex;
  justify-content: center;
}

.rnd-process img {
  max-width: 920px;
}


/* CTA */
.rnd-cta {
  text-align: center; 
}

.rnd-cta p {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 500;
}

.rnd-btn {
  display: inline-block;
  padding: 5px 40px;
  background: #004fac;
  color: #ffffff;
  border-radius: 5px;
  font-size: 20px;
  font-weight: 600;
}

.rnd-btn:hover {
  background: #003b8a;
}