.cntr {
    display: block;
    margin-top: 125px;
}

.cntr a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 1300px;
    margin: auto;
}

.c_ph, .c_dtl {
    display: inline-block;
    border-radius: 10px;
    box-sizing: border-box;
    box-shadow: 0 0 5px #d3d9e1;
}

.c_ph {
    max-height: 385px;
    margin-left: 15px;
    width: 55%;
    overflow: hidden;
}

.c_ph img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.c_dtl {
    max-width: 599px;
    width: 40%;
    height: 250px;
    position: relative;
    right: 24px;
    z-index: 4;
    background-color: white;
}

.c_dtl div {
    margin: 20px;
}

.c_dtl h3 {
    margin: 20px;
    font-weight: bold;
    font-size: 24px;
}

.c_dtl h4 {
    font-size: 20px;
    margin: 20px;
    line-height: 5px;
    font-weight: 500;
}

.c_dtl .rd_mr {
    position: absolute;
    bottom: 20px;
    text-decoration: underline #8d1b0c;
    text-underline-offset: 4px;
    text-decoration-thickness: 3px;
}

@media (max-width: 576px) {
    .cntr {
        margin-top: 85px;
    }
    
    .cntr a {
        flex-direction: column;
        margin: 20px;
    }

    .c_ph, .c_dtl {
        width: 100%;
        margin: 0;
        right: 0;
    }
}