@charset "UTF-8";

.section-title {
    position: relative;
    padding-bottom: 1rem;
}
.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #0d6efd;
    border-radius: 5px;
}
.info-row {
    padding-top: 1rem; /* 간격 확장 */
    padding-bottom: 1rem; /* 간격 확장 */
    border-bottom: 1px solid #dee2e6;
}
.info-row:last-child {
    border-bottom: none;
}
.info-row .col-md-2 {
    font-size: 1.5rem; /* 항목명 글자 크기 키우기 */
}
.info-row .col-md-10 {
    font-size: 1.25rem; /* 내용 글자 크기 키우기 */
}
