/* BASIC css start */
/* ======================================================= */
/* ¡å¡å¡å¡å¡å¡å¡å¡å¡å¡å ÀÚÁÖ ¹¯´Â Áú¹® (´ÙÅ© ·¹µå ±×¶óµð¾ðÆ®) ¡å¡å¡å¡å¡å¡å¡å¡å¡å¡å */
/* ======================================================= */

/* ÀüÃ¼ ¹Ú½º µðÀÚÀÎ */
.faq-box {
  width: 420px;
  min-height: 220px; /* ´Ù¸¥ ¹Ú½º¿Í ÃÖ¼Ò ³ôÀÌ ÅëÀÏ */
  border: 1px solid #A9A9A9; /* ´ÙÅ© ±×·¹ÀÌ Å×µÎ¸® */
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); /* ¾îµÎ¿î ±×¸²ÀÚ */


  display: flex;
  flex-direction: column;
  font-family: 'Malgun Gothic', '¸¼Àº °íµñ', sans-serif;
  overflow: hidden;
}

/* Çì´õ (Á¦¸ñ) */
.faq-header {
  padding: 20px 25px;
  text-align: center;
  /* ¡Ú¡Ú¡Ú °í±Þ½º·¯¿î ¿ÍÀÎ»ö ±×¶óµ¥ÀÌ¼ÇÀ» Ãß°¡Çß½À´Ï´Ù ¡Ú¡Ú¡Ú */
  background: linear-gradient(to right, #A52A2A, #8B0000); 
  border-bottom: 1px solid #6e0000; /* ´õ ¾îµÎ¿î ·¹µå ±¸ºÐ¼± */
  flex-shrink: 0;
}
.faq-header h3 {
  margin: 0 0 5px 0;
  color: #ffffff; /* Èò»ö ±Û¾¾ */
  font-size: 20px;
  font-weight: 700;
}
.faq-header p {
  margin: 0;
  color: #f5f5f5; /* ¿¬ÇÑ È¸»ö ±Û¾¾ */
  font-size: 15px;
}

/* ¸öÅë (Áú¹® ¸®½ºÆ® + ´õº¸±â ¹öÆ°) */
.faq-body {
    flex-grow: 1; 
    padding: 20px 25px; /* ¡Ú¡Ú¡Ú À§ÂÊ ¿©¹éÀ» »ìÂ¦ ´Ã·Á¼­ È­»ìÇ¥ À§Ä¡¸¦ ¸ÂÃä´Ï´Ù */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ¡Ú¡Ú¡Ú Áú¹® ¸ñ·ÏÀº À§·Î, 'ÀüÃ¼º¸±â' ¹öÆ°Àº ¾Æ·¡·Î ºÙÀÔ´Ï´Ù */
}

/* Áú¹® ¸ñ·Ï */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 17px; /* Áú¹® »çÀÌ °£°Ý */
}

/* Áú¹® ¸µÅ© ÇÏ³ªÇÏ³ª */
.faq-item-link {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s;
  /* ¡Ú¡Ú¡Ú Áú¹® ¹Ú½º¿¡ ÀºÀºÇÑ ¹è°æ»öÀ» Ãß°¡Çß½À´Ï´Ù ¡Ú¡Ú¡Ú */
  background-color: #FFF8F8;
  border: 1px solid #FADCDC;
}
.faq-item-link:hover {
  background-color: #fbebeb; /* È£¹ö ½Ã ¿¬ÇÑ ·¹µå ¹è°æ */
  border-color: #F8BABA;
  transform: translateY(-2px); /* »ìÂ¦ ¶°¿À¸£´Â È¿°ú */
}
.faq-item-link .q-icon {
  font-weight: 700;
  color: #c0392b; /* Æ÷ÀÎÆ® ·¹µå »ö»ó */
  margin-right: 10px;
  font-size: 15px;
}
.faq-item-link .question-text {
  flex-grow: 1;
  font-size: 15px; /* ¡Ú¡Ú¡Ú ¿äÃ»ÇÏ½Å´ë·Î 18px ´ë½Å 14px·Î ¼öÁ¤Çß½À´Ï´Ù ¡Ú¡Ú¡Ú */
  font-weight: 500;
  color: #333;
}

/* 'ÀüÃ¼º¸±â' ¹öÆ° */
.faq-more-button {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-top: 30px; /* Áú¹® ¸ñ·Ï°úÀÇ °£°Ý */
  text-align: center;
  border: none; /* Å×µÎ¸® Á¦°Å */
  border-radius: 8px;
  /* ¡Ú¡Ú¡Ú ¹öÆ°¿¡µµ Çì´õ¿Í µ¿ÀÏÇÑ ±×¶óµ¥ÀÌ¼ÇÀ» Àû¿ëÇß½À´Ï´Ù ¡Ú¡Ú¡Ú */
  background: linear-gradient(to right, #A52A2A, #8B0000);
  color: #ffffff; /* Èò»ö ±Û¾¾ */
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.faq-more-button:hover {
  background: linear-gradient(to right, #B22222, #A52A2A);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}
/* BASIC css end */

