﻿




.wrap>div{
    width: 880px;
    margin-top: 11rem;
}
@media (max-width:984px) {
    .wrap>div{
        width: 100%;
    }
}
@media (max-width:768px) {
    .wrap>div{
    margin-top: 5rem;
    }
}

.title{
    text-align: center;
}



.option{
    justify-content: space-around;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.open_obj {
    display: flex; /* flex 컨테이너로 변경 */
    justify-content: center; /* 수평 중앙 정렬 */
    align-items: center;     /* 수직 중앙 정렬 */
    text-align: center;
    border-radius: 16px;
    background: #f9f9f9;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    border: 1px solid transparent;
}
.open_obj:hover{
    border: 1px solid var(--sub-color);
}
.radio_content {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.open_obj input[type="radio"] + span {
    padding: 50px 10px;
    height: auto;
    line-height: normal;
}
.open_obj img{
    width: 56px;
    height: auto;
}
.radio_content .text {
    line-height: 140%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 1.3rem;
}
.radio_content strong {
    font-size: 1.2rem;
    font-weight: 600;
    color: #3B424B;
}
.radio_content em {
    font-size: .87rem;
    color: #949CA2;
}



@media (max-width: 768px) {
    .option{
        grid-template-columns: repeat(1, 1fr);
    }
    .open_obj input[type="radio"] + span {
        padding: 2rem 10px;
        font-size: 1.5rem;
    }
    .next_btn {
        width: 100%;
        border-radius: var(--border-15px);
        margin-top: 2rem;
    }  
     .radio_content .text {
        margin-top: 1rem;
        line-height: 92%;
    }
}
@media (max-width: 580px) {
    .radio_content .text {
        line-height: 80%;
    }
}