/* PLUSCALE About Us Page Styles */

/* About 페이지 전용 스타일 - pluscale.css의 기본 스타일을 상속하고 추가 */

/* --- Page Hero --- */
.page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 6rem 0;
}

.page-hero-title {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #fff;
}

.page-hero-subtitle {
    max-width: 42rem;
    margin: 1.5rem auto 0;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* --- Story Section --- */
.story-section {
    max-width: 1024px;
}

.story-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
}

.story-image-wrapper {
    border-radius: 0.75rem;
    overflow: hidden;
}

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

.story-content {
    text-align: left;
}

.story-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.story-text {
    color: #d1d5db;
    line-height: 1.75;
    margin-bottom: 1rem;
}

/* --- Core Values Section --- */
.values-section {
    max-width: 1280px;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2rem;
    border-radius: 0.75rem;
}

.value-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* --- Team Section --- */
.team-section {
    max-width: 1280px;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
}

.team-card img {
    width: 8rem;
    height: 8rem;
    border-radius: 9999px;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 2px solid var(--color-purple-medium);
}

.team-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
}

.team-card p {
    color: var(--color-purple-light);
    font-size: 0.875rem;
}

/* --- CTA Section --- */
.cta-section {
    max-width: 1024px;
}

.cta-card {
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 9999px;
    filter: blur(100px);
}

.cta-glow.top-left {
    top: -50%;
    left: -50%;
    background-color: rgba(147, 51, 234, 0.4);
}

.cta-glow.bottom-right {
    bottom: -50%;
    right: -50%;
    background-color: rgba(37, 99, 235, 0.4);
}

.cta-content {
    position: relative;
    z-index: 10;
}

.cta-content p {
    color: #d1d5db;
    margin-top: 1rem;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    margin-top: 2rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background-image: linear-gradient(to right, var(--color-blue), var(--color-purple));
    border-radius: 0.5rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cta-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

/* --- Responsive Styles --- */
@media (min-width: 640px) {
    .page-hero {
        padding: 8rem 0;
    }

    .page-hero-title {
        font-size: 3.75rem;
    }

    .page-hero-subtitle {
        font-size: 1.125rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-card {
        padding: 4rem;
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-hero-title {
        font-size: 4.5rem;
    }

    .story-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}