

/* ÄÁÅ×ÀÌ³Ê */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  box-sizing: border-box;
}


	.section {
	  max-width: 1200px;      /* feature-section°ú ¸ÂÃã */
	  margin: 60px auto;      /* À§¾Æ·¡ ¿©¹é µ¿ÀÏÇÏ°Ô */
	  padding: 0 20px;        /* ÁÂ¿ì ¿©¹é ÅëÀÏ */
	}
	.section p {
	  margin-bottom: 18px;
	  font-size: 16px;
	  color: #444;
	}	 
    .section h2 {
      font-size: 24px;
      margin-bottom: 20px;
      color: #1e3a8a;
    }




.feature-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: 'Noto Sans KR', sans-serif;
}

.feature-section h2 {
  font-size: 28px;
  color: #1e3a8a;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  padding: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(30, 64, 175, 0.15);
}

.feature-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
}

.feature-card h3 {
  font-size: 18px;
  color: #1e40af;
  font-weight: 600;
  padding: 20px 20px 8px;
  margin: 0;
}

.feature-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  padding: 0 20px 20px;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-section h2 {
    font-size: 22px;
  }
  .feature-card h3 {
    font-size: 17px;
    padding: 16px 16px 6px;
  }
  .feature-card p {
    font-size: 14px;
    padding: 0 16px 16px;
  }
}


















	
	 
	
	 
.hashtag-wrap {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hashtag {
  display: inline-block;
  background-color: #f0f5ff;
  color: #1e3a8a;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 500;
  border: 1px solid #1e3a8a;
  transition: background 0.3s ease;
}
.hashtag:hover {
  background-color: #dbe9ff;
  cursor: default;
}	 
	 
	 
.section-title {
  font-size: 20px;
  font-weight: 700;
  color: #2a3c75;
  border-left: 3px solid #2a3c75;
  padding-left: 12px;
  margin: 60px 0 24px 0;
}

.school-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  /* ¿©±â Àý´ë padding ³ÖÁö ¸¶¼¼¿ä */
  padding: 0;
  margin: 0;
}

.school-card {
  background: #fff;
  border: 1px solid #0052cc;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: 0.3s;
  font-family: 'Noto Sans KR', sans-serif;	
  height: 100%; /* ³ôÀÌ´Â À¯µ¿ÀûÀÌ°Å³ª min-height ÁöÁ¤ */
}
	 

.school-card:hover {
  border-color: #0052cc;  /* À¯ÇÐÇÇÇÃ ¸ÞÀÎÄÃ·¯ °­Á¶ */
  box-shadow: 0 8px 20px rgba(0, 82, 204, 0.3);  /* ¸ÞÀÎÄÃ·¯ ±×¸²ÀÚ */
  transform: translateY(-6px) scale(1.02);      /* ¾à°£ ¶ç¿ì°í È®´ë */
  background-color: #fff8f9;  /* ºÓÀº ´À³¦ ¹è°æ */	
  transition: all 0.3s ease;
  z-index: 10;
}
  



.card-label {
  background: #003c99;
  color: white;
  font-size: 12px;
  padding: 6px 12px;
  font-weight: bold;
}
.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 16px;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.card-desc {
  font-size: 14px;
  color: #444;
  margin-bottom: 12px;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.tag {
  background: #f0f4ff;
  color: #1e3a8a;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}
.card-stats {
  font-size: 13px;
  color: #999;
  margin-bottom: 16px;
  display: flex;
  gap: 10px;
}
.card-button {
  display: block;
  background: #1e3a8a;
  color: white;
  padding: 10px 16px;
  text-align: center;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}
.card-button:hover {
  background: #123c76;
}	 

@media (max-width: 1024px) {
  .school-card-grid {
    grid-template-columns: repeat(2, 1fr);  /* ÅÂºí¸´: 2°³ */
  }
}

@media (max-width: 768px) {
  .school-card-grid {
    grid-template-columns: 1fr;  /* ¸ð¹ÙÀÏ: 1°³ */
  }
}


.ch_longplan_block {
  margin-top: 0px;
  padding: 0 10px;
}

.ch_longplan_item {
  border-left: 4px solid #1e3a8a;
  background: #f9f9fc;
  padding: 20px 24px;
  margin-bottom: 36px; /* ÇÃ·£ °£ °£°Ý È®º¸ */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ch_plan_title {
  font-size: 18px;
  font-weight: bold;
  color: #1e3a8a;
  margin-bottom: 16px;
}

.ch_plan_step {
  margin-bottom: 20px; /* STEP °£ °£°Ý È®º¸ */
}

.ch_plan_step strong {
  display: block;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
}

.ch_plan_step p {
  margin: 0;
  line-height: 1.6;
  font-size: 14.8px;
  color: #333;
}










.custom-consult-btn-wrapper {
  margin-top: 48px;
  text-align: center;
  width: 100%;
}

.custom-consult-btn {
  display: inline-block;
  width: 97%;
  max-width: 100%;
  background-color: #004080; /* ÁøÇÑ ÆÄ¶õ»ö */
  color: white;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.custom-consult-btn:hover {
  background-color: #0059b3; /* hover½Ã Á» ´õ ¹àÀº ÆÄ¶û */
  text-decoration: none;
  color: white;
}

	  

  .like-count.liked {
    color: red; /* ¶Ç´Â ¾ÆÀÌÄÜ º¯°æ µî ¿øÇÏ´Â ½ºÅ¸ÀÏ */
    font-weight: bold;
  }
