/* 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: #f4f4f4;
}

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

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

/* ºê·£µå ¹Ú½º ½ºÅ¸ÀÏ */
.brand-box {
  width: 140px; /* °¡·Î Å©±â */
  height: 220px; /* ¼¼·Î Å©±â */
  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: 15px 0 0; /* À§ÂÊ ÆÐµù Á¦°Å ¶Ç´Â ÁÙÀÓ */
    text-align: center;
    flex-grow: 0; /* ÅØ½ºÆ® ¿µ¿ªÀÌ ´Ã¾î³ªÁö ¾Êµµ·Ï */
}

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

/* ¼³¸í ÅØ½ºÆ® ½ºÅ¸ÀÏ */
.brand-text p {
  font-size: 0.8rem;
  color: #666;
}

/* BASIC css end */

