main { 
    padding: .5rem ; 
    display: flex; 
    align-items: flex-start; /* 중앙 정렬 대신 시작 정렬 */
    flex-wrap: wrap; 
}


main section { 
    width: 33.3%; 
    padding: 1rem ; 
    display: flex; /* Flexbox 추가 */
    flex-direction: column; /* 요소들을 세로로 정렬 */
}
main section:nth-child(1) { 
    width: 100%; 
    text-align: center; 
}
main section .tit { 
    background-color: #F1B4BB;
    border-radius: 1rem;
}

main section .tit h2 { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    font-size: 1.4rem; 
    font-weight: 600;
    color: #fff; 
    padding: 1rem;
    position: relative;
}
main section .tit h2::after { 
    content: '▶';
    position: absolute;
    right: 0;
    margin-right: 0.8rem;
    font-size: 1.2rem;

}



main section .tit a h2  { 
    color: #fff;
}

main section ul li { 
    border-bottom: 1px solid #dfdfdf;
}

main section ul li a { 
    display: block; 
    padding: 1rem; 
    font-size: 1.2rem; 
    font-weight: 500;
} 

main section ul li a:hover { 
    background: #efefef;
    border-radius: 1rem;
}

@media screen and (max-width: 767px) {
    main { 
        flex-wrap: wrap;
    }
    main section { 
        width: 100%; 
        margin-bottom: 1.5rem;
    }
}
