.shmf-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}
.shmf-sub-container {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    background-color: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .15);
    transition: all 0.3s ease;
    position: relative;
}
.shmf-sub-container:hover {
    box-shadow: 0 0 10px 10px rgba(0, 0, 0, .15);
}
.shmf-sub-container::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #02129b;
}
.shmf-image-thumb {
    width: 100%;
    height: 320px !important;
    object-fit: cover;
    background-color: #f0f0f0;
    display: block;
}
.shmf-detail-main-container {
    padding: 20px;
    position: relative;
}
.shmf-detail-main-container a {
    text-decoration: none;
}
.shmf-detail-title {
    color: #02129b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}
.shmf-detail-info {
    color: #333;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.shmf-read-more-btn {
    color: #02129b;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}
.shmf-read-more-btn:hover {
    color: #02129b;
}
.shmf-read-more-btn::after {
    content: '»';
    margin-left: 5px;
    transition: all 0.3s ease;
}
.shmf-read-more-btn:hover::after {
    transform: translateX(5px);
}
.shmf-no-record {
    border: 1px solid #d7d7d7;
    border-radius: 0.25rem;
    padding: 15px;
    background: #e9e9e9;
    font-weight: bold;
}

/*detail page style*/
.shmf-detail-title-div {
    width: 100%;
    margin-bottom: 30px;
    border-bottom: 4px solid #1b73bb;
}
.shmf-detail-title {
    color: #000000;
    font-size: 30px;
}
.shmf-detail-image {
    float: right !important;
    width: 500px !important;
	margin-left: 15px;
    margin-bottom: 15px;
}
.shmf-detail-body {
    word-break: break-word !important;
}
.shmf-detail-video {
    text-align: center !important;
}
.shmf-detail-video iframe {
    width: 840px !important;
    height: 360px !important;
    margin-top: 30px !important;
}

/*breadcrumb*/
.shmf_breadcrumb_main_div {
    max-width: 100%;
    width: 100%;
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.shmf_breadcrumb_top_title_div {
    margin-bottom: 10px;
}
.shmf_breadcrumb_top_title_div h2 {
    margin: 0;
    font-size: 42px;
    font-weight: 400;
    line-height: 46px;
    color: #fff !important;
}
.shmf_breadcrumb_inner_div {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #fff !important;
}
.shmf_breadcrumb_arrow {
    font-size: 15px;
    line-height: 23px;
    font-weight: 700;
}

/* media query */
@media(max-width:767px){
.shmf-main-container , .shmf_breadcrumb_inner_div {
    flex-direction: column !important;
}
.shmf-sub-container {
    max-width: 100% !important;
}
}