/* BASIC css start */
/* ÀÌ¹ÌÁö ½ºÅ¸ÀÏ */
.brand-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}



/* ±âº» ½ºÅ¸ÀÏ */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: fff;
}

/* contentWrapper ½ºÅ¸ÀÏ */
#contentWrapper {
  width: 100%;  /* contentWrapper°¡ È­¸éÀÇ 100%¸¦ Â÷Áö */
  max-width: 1200px;  /* ÃÖ´ë ³Êºñ ¼³Á¤ (¿¹: 1200px·Î ¼³Á¤) */
  margin: 0 auto;  /* ÆäÀÌÁö Áß¾Ó¿¡ ¹èÄ¡ */
  padding: 20px;  /* »óÇÏ ÁÂ¿ì ¿©¹é */
}

/* ÆäÀÌÁö ÄÁÅ×ÀÌ³Ê */
.container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);  /* ÇÑ ÁÙ¿¡ 3°³ÀÇ ºê·£µå ¹Ú½º */
  gap: 1px;  /* ºê·£µå ¹Ú½º »çÀÌ¿¡ °£°Ý */
  width: 100%;
  justify-items: center;
}

/* ºê·£µå ¹Ú½º ½ºÅ¸ÀÏ */
.brand-box {
  width: 80px; /* °¡·Î Å©±â */
  height: 130px; /* ¼¼·Î Å©±â */
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  display: flex;
    flex-direction: column;
    justify-content: space-between; /* ¶Ç´Â space-around */
    padding: 10px;
}

.brand-image {
    width: 100%;
    height: auto; /* ³ôÀÌ¸¦ auto·Î ¼³Á¤ÇÏ¿© ÀÌ¹ÌÁö ºñÀ² À¯Áö */
    object-fit: contain;
    object-position: top center; /* ÀÌ¹ÌÁö¸¦ À§ÂÊ Áß¾Ó¿¡ ¹èÄ¡ */
    margin-bottom: auto; /* ¾Æ·¡ÂÊ ¸¶ÁøÀ» auto·Î ¼³Á¤ÇÏ¿© ÅØ½ºÆ®¸¦ ¾Æ·¡·Î ¹Ð±â */
    border-radius: 5px;
}

.brand-text {
    padding: 10px 0 0; /* À§ÂÊ ÆÐµù Á¦°Å ¶Ç´Â ÁÙÀÓ */
    text-align: center;
    flex-grow: 0; /* ÅØ½ºÆ® ¿µ¿ªÀÌ ´Ã¾î³ªÁö ¾Êµµ·Ï */
}

/* h2 (ºê·£µå ÀÌ¸§) À§¿¡ ¼± Ãß°¡ */
.brand-text h2 {
  font-size: 0.7rem;
  color: #333;
  margin: 12px 0;
  padding-top: 1px;
  border-top: 1px solid #000;
}

/* ¼³¸í ÅØ½ºÆ® ½ºÅ¸ÀÏ */
.brand-text p {
  font-size: 0.5rem;
  color: #666;
  margin: -8px 0;  /* À§, ¾Æ·¡ ¸¶ÁøÀ» ÁÙ¿©¼­ °£°ÝÀ» ÁÙÀÓ */
  line-height: 1; /* ÁÙ °£°ÝÀ» ´õ Á¼Èû */
}

/* ¸ð¹ÙÀÏ È­¸é Å©±â¿¡ ¸ÂÃç °£°Ý ¹× Å©±â Á¶Á¤ */
@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(3, 1fr);  /* ¸ð¹ÙÀÏ¿¡¼­´Â ÇÑ ÁÙ¿¡ 2°³¾¿ Ç¥½Ã */
    gap: 2px;  /* °£°ÝÀ» Á¶±Ý ´õ ³ÐÈû */
  }

  .brand-box {
    width: 70px;  /* ¸ð¹ÙÀÏ¿¡¼­´Â ¹Ú½ºÀÇ °¡·Î Å©±â ÁÙÀÓ */
    height: 120px;  /* ¼¼·Î Å©±â ÁÙÀÓ */
  }

  .brand-text h2 {
    font-size: 0.6rem;  /* Á¦¸ñ ±ÛÀÚ Å©±â ÁÙÀÓ */
    margin: 8px 0;  /* °£°Ý Á¼È÷±â */
  }

  .brand-text p {
    font-size: 0.45rem;  /* ¼³¸í ÅØ½ºÆ® Å©±â ÁÙÀÓ */
  }
}

/* BASIC css end */

