/* About 페이지 */
.about-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-image {
    width: 350px;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

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

.text-area {
    width: 60%;
    border-radius: 20px;
    color: rgb(0, 0, 0);
}

.text-area p {
    line-height: 1.6;
    text-align: left;
}

/* 반응형 스타일 */
@media (max-width: 768px) {
    .about-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    .text-area {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px;
    }
    .about-layout {
        gap: 0px;
        padding: 0px;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .text-area {
        font-size: 11px;
        width: 100%;
        padding: 20px 0px 0px 0px;
    }

} 