/* Biography Page Styles */

/* Page Title Section */
.page-title-section {
    background-color: var(--primary-color);
    border-radius: 24px;
    overflow: hidden;
    height: 120px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.page-title-section .section-title {
    padding: 0 40px 0;
    text-align: left;
}

/* Common Content Header */
.content-header {
    padding: 20px 0;
}

.content-header h3 {
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: 0;
    line-height: 30px;
}

.title-divider {
    width: 127px;
    height: 1px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: 4px;
}

.title-divider.wide {
    width: 134px;
}

/* Greetings Section */
.greetings-section {
    background: var(--white);
    border-radius: 24px;
    padding: 10px 80px;
    position: relative;
    overflow: hidden;
}

.greetings-content {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: center;
}

.doctor-image {
    flex-shrink: 0;
    width: 280px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.greetings-text {
    flex: 1;
    max-width: 600px;
    padding: 10px;
}

.greetings-highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.highlight-bar {
    width: 1px;
    height: 18px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.greetings-highlight p {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: var(--primary-color);
    letter-spacing: -0.64px;
}

.greetings-description {
    padding: 0 10px;
}

.greetings-description p {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 31px;
    letter-spacing: -0.064px;
}

/* Biography Section */
.biography-section {
    background: var(--white);
    border-radius: 24px;
    padding: 10px 80px;
    position: relative;
    overflow: hidden;
}

.biography-content {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: flex-start;
}

.biography-label {
    display: flex;
    align-items: center;
    width: 276px;
    justify-content: flex-end;
    padding: 2px 0;
}

.biography-label span {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 32px;
    color: var(--primary-color);
    letter-spacing: -0.128px;
    line-height: 31px;
    padding-right: 58px;
}

.vertical-divider {
    width: 1px;
    height: 434px;
    background-color: var(--primary-color);
    border-radius: 1px;
}

.biography-list {
    flex: 1;
    padding: 16px;
}

.biography-list ul {
    list-style: none;
}

.biography-list li {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 31px;
    letter-spacing: -0.064px;
}

/* Overlay Blur Decorations */
.overlay-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 203, 236, 0.5) 0%, rgba(125, 203, 236, 0) 70%);
    pointer-events: none;
    filter: blur(24px);
    border-radius: 400px;
}

.overlay-blur.left {
    left: -100px;
    bottom: -100px;
}

.overlay-blur.right {
    right: 97px;
    top: 40px;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .greetings-section,
    .biography-section {
        padding: 10px 40px;
    }

    .greetings-content {
        flex-direction: column;
    }

    .doctor-image {
        width: 100%;
        max-width: 280px;
        height: 250px;
    }

    .greetings-text {
        max-width: 100%;
    }

    .biography-content {
        flex-direction: column;
    }

    .biography-label {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .biography-label span {
        padding-right: 20px;
    }

    .vertical-divider {
        height: 40px;
    }
}

@media screen and (max-width: 768px) {
    .greetings-section,
    .biography-section {
        padding: 10px 20px;
    }

    .content-header h3 {
        font-size: 20px;
    }

    .doctor-image {
        height: 200px;
    }

    .greetings-highlight p,
    .greetings-description p,
    .biography-list li {
        font-size: 14px;
        line-height: 26px;
    }

    .biography-label span {
        font-size: 24px;
    }

    .overlay-blur {
        width: 200px;
        height: 200px;
    }

    .overlay-blur.right {
        right: 20px;
        top: 20px;
    }
}

@media screen and (max-width: 480px) {
    .page-title-section {
        height: 100px;
    }

    .greetings-section,
    .biography-section {
        padding: 10px 15px;
    }

    .content-header h3 {
        font-size: 18px;
    }

    .title-divider {
        width: 100px;
    }

    .doctor-image {
        height: 180px;
    }

    .greetings-highlight p,
    .greetings-description p,
    .biography-list li {
        font-size: 13px;
        line-height: 24px;
    }

    .biography-label span {
        font-size: 20px;
    }

    .vertical-divider {
        height: 30px;
    }
}

/* Japanese font override */
html[lang="ja"] .greetings-highlight p,
html[lang="ja"] .greetings-description p,
html[lang="ja"] .biography-label span,
html[lang="ja"] .biography-list li {
    font-family: 'Noto Sans JP', sans-serif;
}
