@charset "UTF-8";

/* About Page */
.about-section {
    background: #fff;
    padding: 60px 40px;
    border-radius: 15px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f0e0e2;
}

.about-header h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-subtitle {
    font-size: 18px;
    color: #c9979b;
    font-style: italic;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-story {
    flex: 1;
}

.story-block {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #f5f5f5;
}

.story-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.story-block h2 {
    font-size: 22px;
    color: #c9979b;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

.story-block h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, #e8b4b8, #c9979b);
    border-radius: 2px;
}

.story-block p {
    font-size: 16px;
    color: #555;
    line-height: 2;
    margin-bottom: 15px;
}

.story-block p:last-child {
    margin-bottom: 0;
}

.story-block em {
    color: #b88589;
    font-style: italic;
}

.story-quote {
    background: linear-gradient(135deg, #fdf6f7 0%, #f9eced 100%);
    padding: 25px 30px;
    border-radius: 10px;
    border-left: 4px solid #c9979b;
    font-style: italic;
    color: #666;
    margin: 20px 0;
}

.story-final {
    background: linear-gradient(135deg, #fefcfc 0%, #fdf8f8 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #c9979b;
}

.story-highlight {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #e8b4b8;
}

.story-highlight strong {
    color: #c9979b;
    font-size: 20px;
}

/* About Image */
.about-image {
    flex-shrink: 0;
    width: 380px;
    position: sticky;
    top: 120px;
    background: linear-gradient(145deg, #f5dfe1, #e8b4b8);
    padding: 8px;
    border-radius: 16px;
    box-shadow:
        0 20px 50px rgba(201, 151, 155, 0.3),
        0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 16px;
    color: #999;
    font-style: italic;
}

/* Responsive - 태블릿 */
@media (max-width: 900px) {
    .about-content {
        flex-direction: column-reverse;
    }

    .about-image {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 40px;
        position: static;
        padding: 6px;
        border-radius: 14px;
    }

    .about-image img {
        height: 350px;
        border-radius: 10px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .about-header h1 {
        font-size: 28px;
    }
}

/* 모바일 */
@media (max-width: 480px) {
    .about-section {
        padding: 30px 15px;
    }

    .about-header {
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .about-header h1 {
        font-size: 24px;
    }

    .about-subtitle {
        font-size: 15px;
    }

    .about-image {
        max-width: 240px;
        margin-bottom: 30px;
        padding: 5px;
        border-radius: 12px;
    }

    .about-image img {
        height: 300px;
        border-radius: 9px;
    }

    .story-block {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .story-block h2 {
        font-size: 18px;
        padding-left: 12px;
    }

    .story-block h2::before {
        width: 3px;
        height: 16px;
    }

    .story-block p {
        font-size: 14px;
        line-height: 1.8;
    }

    .story-quote {
        padding: 20px;
        font-size: 14px;
    }

    .story-final {
        padding: 20px;
    }

    .story-highlight {
        font-size: 15px;
    }

    .story-highlight strong {
        font-size: 17px;
    }

    .image-caption {
        font-size: 14px;
    }
}
