/* Problem Section Styles */
#problem {
    padding-top: 60px;
    border-top: 1px solid var(--border-light);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 60px;
}

.intro-text p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.6;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
}

.problem-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.problem-number {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Google Sans', sans-serif;
    min-width: 50px;
}

.problem-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.problem-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Framework Draft - Problem Section */
.section.bg-sketch-wrist::before {
    background-image: url('../assets/images/framework_draft.png');
    background-position: center;
    background-size: 50vh;
    opacity: 0.1;
}