/* About 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;
}

/* About Content Section */
.about-content {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 80px;
    position: relative;
    overflow: hidden;
}

/* Content Header */
.content-header {
    margin-bottom: 20px;
}

.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: 220px;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 2px;
    margin-top: 4px;
}

/* Content Intro */
.content-intro {
    padding: 40px 10px;
}

.content-intro p {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 31px;
}

/* Content Main - Image and List */
.content-main {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: center;
}

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

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-list {
    flex: 1;
    padding: 10px;
}

.content-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.content-list li {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 31px;
    letter-spacing: -0.064px;
    padding-left: 20px;
    position: relative;
}

.content-list li::before {
    content: '・';
    position: absolute;
    left: 0;
}

/* Content Description */
.content-description {
    padding: 40px 10px;
}

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

/* Content Highlight */
.content-highlight {
    padding: 20px 10px;
    text-align: center;
}

.content-highlight p {
    font-family: 'Noto Sans KR', sans-serif;
    font-weight: 100;
    font-size: 24px;
    color: var(--text-dark);
    line-height: 31px;
}

/* Overlay Blur Decoration */
.overlay-blur {
    position: absolute;
    top: -124px;
    right: -67px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(125, 203, 236, 0.6) 0%, rgba(125, 203, 236, 0) 70%);
    pointer-events: none;
}

/* Responsive Styles */
@media screen and (max-width: 1024px) {
    .about-content {
        padding: 30px 40px;
    }

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

    .content-image {
        width: 100%;
        max-width: 480px;
        height: 250px;
    }

    .content-list {
        padding: 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .about-content {
        padding: 20px;
    }

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

    .title-divider {
        width: 180px;
    }

    .content-intro {
        padding: 20px 0;
    }

    .content-intro p,
    .content-list li,
    .content-description p {
        font-size: 14px;
        line-height: 26px;
    }

    .content-image {
        height: 200px;
    }

    .content-highlight p {
        font-size: 18px;
        line-height: 28px;
    }

    .content-description {
        padding: 20px 0;
    }

    .overlay-blur {
        width: 200px;
        height: 200px;
        top: -80px;
        right: -40px;
    }
}

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

    .about-content {
        padding: 15px;
    }

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

    .title-divider {
        width: 150px;
    }

    .content-intro p,
    .content-list li,
    .content-description p {
        font-size: 13px;
        line-height: 24px;
    }

    .content-image {
        height: 180px;
    }

    .content-highlight p {
        font-size: 16px;
        line-height: 26px;
    }
}

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