/* gene-system.html 전용 스타일 */

.page-title-container {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1435575653489-b0873ec954e2?q=80&w=1740&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding-bottom: 40px;
    position: relative;
}

.title-content {
    position: relative;
    z-index: 2;
}

.title-content .subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 10px 0 8px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.08rem;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.content-container {
    max-width: 1200px;
    width: 100%;
    margin: 32px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30,80,180,0.10);
    padding: 40px;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.1s cubic-bezier(.4,0,.2,1) forwards;
}

.p-content-title {
    color: #2056a8;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(24px);
    animation: fadeUp 1s .2s cubic-bezier(.4,0,.2,1) forwards;
}

.product-feature-title {
    color: #1976b6;
    font-size: 1.13rem;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s .3s cubic-bezier(.4,0,.2,1) forwards;
}

.product-feature-list {
    margin: 0 0 8px 0;
    padding-left: 18px;
}

.product-feature-list li {
    color: #222;
    font-size: 1.04rem;
    margin-bottom: 4px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s .4s cubic-bezier(.4,0,.2,1) forwards;
}

.product-feature-list b {
    color: #2056a8;
    font-weight: 700;
}

.product-warning {
    background: #f7faff;
    color: #b12a2a;
    font-size: 0.98rem;
    border-left: 4px solid #1976b6;
    border-radius: 8px;
    padding: 16px 18px;
    margin-top: 24px;
    box-shadow: 0 2px 8px rgba(30,80,180,0.04);
    line-height: 1.7;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeUp 0.8s .5s cubic-bezier(.4,0,.2,1) forwards;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.product-info {
    min-width: 0;
}

.product-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 12px;
    padding: 20px;
}


.product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    .page-title-container {
        height: 300px;
        padding-bottom: 20px;
    }

    .content-container {
        padding: 24px 16px;
        margin: 24px auto;
    }

    .p-content-title {
        font-size: 1.3rem;
    }

    .product-feature-title {
        font-size: 1.01rem;
        margin-top: 18px;
    }

    .product-feature-list li {
        font-size: 0.97rem;
    }

    .product-warning {
        font-size: 0.91rem;
        padding: 12px 16px;
    }
}

@media (max-width: 900px) {
    .product-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-image {
        order: -1;
        max-width: 300px;
        margin: 0 auto;
    }
} 