/* 투자정보 페이지 상단 배너 스타일 */
.mmn_wrap {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    overflow: hidden;
    background: transparent;
}

.mmn_page_top {
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.mmn_page_top_img_title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
    padding: 20px;
    z-index: 1;
}

.mmn_page_top_img_area {
    background-position: center;
    background-repeat: no-repeat;
    height: 350px;
}

.mmn_contents_wrap {
    min-height: 200px;
    padding: 3rem 0 5rem;
}

.container-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

/* Flexbox 유틸리티 클래스 */
.d-flex {
    display: flex !important;
}

.flex-column {
    flex-direction: column !important;
}

.justify-content-center {
    justify-content: center !important;
}

.align-items-center {
    align-items: center !important;
}

/* 반응형 */
@media (max-width: 768px) {
    .mmn_page_top_img_area {
        height: 200px;
    }

    .mmn_page_top {
        min-height: 250px;
        margin-bottom: 30px;
    }
    
    .mmn_page_top_img_title {
        font-size: 28px;
    }

}

@media (max-width: 480px) {
    .mmn_page_top {
        min-height: 200px;
        margin-bottom: 20px;
    }
    
    .mmn_page_top_img_title {
        font-size: 24px;
    }
}
