/* General container */
.container {
    width: 100%;

    /* 平板宽度 */
    margin: auto;

    position: relative;

}

/* Section styles */
.curry-section {
    text-align: center;
    padding: 40px 20px;
}

/* Title */
.curry-title {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(90deg, #f8a720, #ed6325);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}

/* Subtitle */
.curry-subtitle {
    font-size: 20px;
    color: #5a2d1c;
    margin-top: 10px;
}

/* Divider line */
.divider {
    width: 100%;
    height: 2px;
    background-color: #ed6325;
    margin: 30px 0;
}

/* Category buttons */
.category-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-buttons .btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    background-color: #fde2cf;
    color: #5a2d1c;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-buttons .btn.active {
    background-color: #f8a720;
    color: #fff;
}

.category-buttons .btn:hover {
    background-color: #ed6325;
    color: #fff;
}

/* Responsive */
@media (max-width: 1040px) {
    .curry-title {
        font-size: 40px;
    }

    .curry-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 415px) {
    .curry-title {
        font-size: 32px;
    }

    .curry-subtitle {
        font-size: 16px;
    }

    .category-buttons {
        gap: 8px;
    }

    .category-buttons .btn {
        font-size: 14px;
        padding: 8px 14px;
    }
}

/* Section background */
.curry-question {
    background-color: #fde2cf;
    padding: 50px 20px;
}

/* Flex container */
.question-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

/* Left column */
.question-left {
    flex: 1 1 55%;
    max-width: 600px;
}

.question-number {
    font-size: 18px;
    color: #f8a720;
    margin-bottom: 8px;
}

.question-title {
    font-size: 28px;
    font-weight: bold;
    color: #ed6325;
    margin-bottom: 15px;
}

.question-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Small images */
.small-images {
    display: flex;
    gap: 16px;
}

.small-images img {
    width: 48%;
    border-radius: 10px;
    object-fit: cover;
}

/* Right column */
.question-right {

    display: flex;
    justify-content: center;
}

.question-right img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 1040px) {
    .question-title {
        font-size: 24px;
    }
}

@media (max-width: 415px) {
    .question-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .question-left,
    .question-right {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .small-images {
        flex-direction: column;
    }

    .small-images img {
        width: 100%;
    }

    .question-right img {
        max-width: 100%;
    }
}