/* 아산본 칼럼 약력카드 공통 스타일
   사용자 칼럼 화면과 관리자 Summernote 편집 화면에서 함께 사용한다. */
#asan-clinic-profile-card {
    max-width: 800px;
    margin: 40px auto;
    background-color: #f0f4fa;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
}

.asan-flex-wrapper {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 30px;
    gap: 30px;
}

.asan-img-column {
    flex: 0 0 260px;
}

.asan-img-column img {
    display: block;
    width: 260px;
    height: 260px;
    border-radius: 20px;
    object-fit: cover;
    background-color: #fff;
}

.asan-text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.asan-main-subject {
    margin: 0 0 8px;
    color: #142850;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    word-break: keep-all;
}

.asan-career-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.asan-career-item {
    color: #444;
    font-size: 13px;
    line-height: 1.7;
}

.asan-benefit-btn {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
    border-radius: 999px;
    background-color: #142850 !important;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700 !important;
    text-align: center;
    text-decoration: none !important;
}

@media (max-width: 768px) {
    .asan-flex-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .asan-img-column {
        flex: 0 0 auto;
        width: 100%;
        margin-bottom: 20px;
    }

    .asan-img-column img {
        width: 100%;
        max-width: 300px;
        height: auto;
        margin: 0 auto;
    }

    .asan-text-column {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .asan-main-subject {
        margin-bottom: 5px;
        text-align: left;
    }

    .asan-career-grid {
        grid-template-columns: 1fr;
    }

    .asan-profile-pc {
        display: none;
    }
}
