/* 文生图实际应用案例样式 */
.image-examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

@media (min-width: 768px) {
    .image-examples-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.image-example-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-example-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.image-display {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.generated-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-example-item:hover .generated-image {
    transform: scale(1.05);
}

.image-title {
    padding: 15px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
    line-height: 1.4;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.prompt-examples {
    padding: 40px 0;
    background: #ffffff;
}

@media (max-width: 767px) {
    .image-examples-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .image-display {
        height: 200px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
}