/* BASIC css start */
/**/
#footer .foot_bottom, #bbsData .bbs-link-top, #bbsData .bbs-link-btm, .bbs-table-list table thead, .top-banner
{
    display: none !important;
}
#footer
{
    margin-top: 60px;
}


/* subpage NAV */
#subpage_nav
{
    box-shadow: 0 13px 24px rgba(0, 0, 0, 0.1);
    border-radius: 20px 0 20px 0;
}
.item_icon
{
    position: relative;
}

.item_icon > div::after 
{
    content: "";
    position: relative;
    right: -45px;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgb(186 188 191);
}

.page_title1:after 
{
    content: "";
    display: block;
    width: 50px;
    height: 1px;
    background: #828282;
    margin: 12px 0 0;
}

.menu-item 
{
    width: 20%;
    height: 54px;
    line-height: 38px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    font-size: 18px;
    color: #333333;
}

.menu-item:hover {
    color: #2E3192;
}

.menu-item.active 
{
    background: #176097;
    color: white;
    font-weight: 700;
}

.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #3285c3;
}

.breadcrumb-separator {
    margin: 0 8px;
    color: #9ca3af;
}
        
/* tailwind CSS + Custom */
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* 
{
    font-family: "Pretendard", "Pretendard Variable", sans-serif !important;
}

/* brochure */
.brochure-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.brochure-card:hover {
    transform: translateY(-5px);
}

.brochure-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #f5f5f5;
}

.brochure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: background-color 0.3s ease;
}

.brochure-card:hover .overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

.button-group {
    display: flex;
    gap: 12px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.brochure-card:hover .button-group {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.action-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.action-button:hover {
    background-color: #991b1b;
}

.download-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    background-color: #dc2626;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.download-button:hover {
    background-color: #991b1b;
}

.brochure-title {
    padding: 16px;
    background-color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
}

/* BASIC css end */

