/* BASIC css start */
/* °Ô½ÃÆÇ ¸®½ºÆ® ÅÇ ¹öÆ° */
.bbs-hd {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 30px 20px;
}

.bbs-hd *::before,
.bbs-hd *::after {
    display: none !important;
    content: none !important;
}

.bbs-hd ul.link {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.bbs-hd ul.link li {
    margin: 0;
    padding: 0;
    list-style: none;        /* ¨ç | ¸·´ë Á¦°Å */
    list-style-type: none;   /* ¨ç È¤½Ã »óÀ§ ½ºÅ¸ÀÏ µ¤¾î¾²´Â °æ¿ì ´ëºñ */
    border: none !important;
    border-left: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.bbs-hd ul.link li a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    background-color: #f5f5f5;
    border: 0 solid #e5e5e5;
    border-radius: 8px;      /* ¨è ¸ð¼­¸® ¶ó¿îµå */
    color: #444;
    font-size: 16px;                                          /* ¨é ÆùÆ® */
    font-family: "¸¼Àº °íµñ", 'Malgun Gothic', sans-serif;   /* ¨é ÆùÆ® */
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s;
    border-left: none !important;
}

.bbs-hd ul.link li a:hover {
    background-color: #e0e0e0;
    color: #111;
}

.bbs-hd ul.link li.last a {
    background-color: #333;
    color: #fff;
    border-color: #333;
    border-radius: 8px;
}

/* ¨é °Ô½ÃÆÇ ÀüÃ¼ ÆùÆ® */
#bbsData {
    font-size: 13px;
    font-family: "¸¼Àº °íµñ", 'Malgun Gothic', sans-serif;
}

/* BASIC css end */

