main { padding: .5rem ; display: flex; align-items: center; flex-wrap: wrap; min-height:100vh; align-items: flex-start;}
main section { 
    width: 50%; 
    padding: 1rem ; 
    margin-bottom: 3rem; 
    display: flex; /* Flexbox 추가 */ 
    flex-direction: column; /* 요소들을 세로로 정렬 */} 

main section:nth-child(3) { 
    width: 100%; 
    text-align: center; 
}
main section .tit { 
    border-bottom: 2px solid #a6634c;
}

main section .tit h2 { 
    display: flex; 
    align-items: center; 
    font-size: 1.4rem; 
    font-weight: 600;
    color: #fff; 
    padding: 1rem;
    position: relative;
}
main section .tit h2::after { 
    content: 'view →';
    position: absolute;
    right: 0;
    margin-right: 0.8rem;
    font-size: 1rem;
    color: #929292;
    font-weight: 300;
}



main section .tit a h2  { 
    color: #a6634c; 
}
main section ul li { 
    border-bottom: 1px solid #dfdfdf;
}
main section ul li:nth-last-child(1) { 
    border-bottom: 2px solid #a6634c;
}
main section ul li a { 
    display: block; 
    padding: 1rem; 
    font-size: 1.2rem; 
    font-weight: 500;
} 
main section ul li a:hover { 
    background: #efefef;
}

@media screen and (max-width: 767px) {
main { flex-wrap: wrap;}
main section { width: 100%; margin-bottom: 1.5rem;}
}