.deqing_sourcing_local {
    padding: var(--content-gap) 0;
    background: #fff;
}

.deqing_sourcing_local_header {
    display: flex;
    flex-direction: column;
    gap: var(--text-gap);
    margin-bottom: calc(var(--content-gap-lg) - var(--text-gap));
}

.deqing_sourcing_local_title {
    color: var(--primary-color);
    font-family: var(--title-font-family);
    font-size: var(--title-size-h1);
    font-weight: 900;
    line-height: normal;
    text-align: center;
    margin: 0;
}

.deqing_sourcing_local_subtitle {
    color: #000;
    font-family: var(--font-300-family);
    font-size: var(--title-size-h5);
    font-weight: 250;
    line-height: normal;
    text-align: center;
    margin: 0;
}

.deqing_sourcing_local_sections {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: calc(var(--content-gap-lg) - var(--text-gap));
}

.deqing_sourcing_local_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--text-gap);
    width: 100%;
}

.deqing_sourcing_local_section_title {
    color: var(--primary-color);
    font-family: var(--font-700-family);
    font-size: var(--title-size-h4);
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    margin: 0;
}

.deqing_sourcing_local_cards {
    display: flex;
    gap: calc(var(--text-gap-sm) * 2);
    width: 100%;
}

.deqing_sourcing_local_card {
    flex: 1;
    position: relative;
    aspect-ratio: 481/560;
    overflow: hidden;
    border-radius: 0;
}

.deqing_sourcing_local_card_img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.deqing_sourcing_local_card_overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.deqing_sourcing_local_card_text {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: calc(var(--text-gap) * 2) calc(var(--text-gap) * 3);
    z-index: 3;
    background: rgba(42, 42, 42, 0.4);
    backdrop-filter: blur(27px);
}

.deqing_sourcing_local_card_text h5 {
    color: #fff;
    font-family: var(--font-700-family);
    font-size: var(--title-size-h4);
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
    height: calc(var(--title-size-h4) * 1.25 * 2);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}


@media screen and (max-width: 768px) {
    .deqing_sourcing_local_cards {
        flex-wrap: wrap;
    }

    .deqing_sourcing_local_card {
        flex: auto;
        width: 100%;
    }
}